}
public static ContentType of(Response response) {
return parse(response.header(CONTENT_TYPE));
}
public static ContentType of(Request request) {
}
public static ContentType of(Response response) {
String header = response.header(CONTENT_TYPE);
return header != null ? parse(header) : null;
}
public static ContentType parse(String header) {